home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / nss / secdig.h < prev    next >
C/C++ Source or Header  |  2006-04-20  |  5KB  |  139 lines

  1. /*
  2.  * crypto.h - public data structures and prototypes for the crypto library
  3.  *
  4.  * ***** BEGIN LICENSE BLOCK *****
  5.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  6.  *
  7.  * The contents of this file are subject to the Mozilla Public License Version
  8.  * 1.1 (the "License"); you may not use this file except in compliance with
  9.  * the License. You may obtain a copy of the License at
  10.  * http://www.mozilla.org/MPL/
  11.  *
  12.  * Software distributed under the License is distributed on an "AS IS" basis,
  13.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  14.  * for the specific language governing rights and limitations under the
  15.  * License.
  16.  *
  17.  * The Original Code is the Netscape security libraries.
  18.  *
  19.  * The Initial Developer of the Original Code is
  20.  * Netscape Communications Corporation.
  21.  * Portions created by the Initial Developer are Copyright (C) 1994-2000
  22.  * the Initial Developer. All Rights Reserved.
  23.  *
  24.  * Contributor(s):
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  28.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39. /* $Id: secdig.h,v 1.5 2004/04/27 23:04:40 gerv%gerv.net Exp $ */
  40.  
  41. #ifndef _SECDIG_H_
  42. #define _SECDIG_H_
  43.  
  44. #include "secdigt.h"
  45.  
  46. #include "seccomon.h"
  47. #include "secasn1t.h" 
  48. #include "secdert.h"
  49.  
  50. SEC_BEGIN_PROTOS
  51.  
  52.  
  53. extern const SEC_ASN1Template sgn_DigestInfoTemplate[];
  54.  
  55. SEC_ASN1_CHOOSER_DECLARE(sgn_DigestInfoTemplate)
  56.  
  57. extern DERTemplate SGNDigestInfoTemplate[];
  58.  
  59.  
  60. /****************************************/
  61. /*
  62. ** Digest-info functions
  63. */
  64.  
  65. /*
  66. ** Create a new digest-info object
  67. **     "algorithm" one of SEC_OID_MD2, SEC_OID_MD5, or SEC_OID_SHA1
  68. **     "sig" the raw signature data (from MD2 or MD5)
  69. **     "sigLen" the length of the signature data
  70. **
  71. ** NOTE: this is a low level routine used to prepare some data for PKCS#1
  72. ** digital signature formatting.
  73. **
  74. ** XXX It might be nice to combine the create and encode functions.
  75. ** I think that is all anybody ever wants to do anyway.
  76. */
  77. extern SGNDigestInfo *SGN_CreateDigestInfo(SECOidTag algorithm,
  78.                        unsigned char *sig,
  79.                        unsigned int sigLen);
  80.  
  81. /*
  82. ** Destroy a digest-info object
  83. */
  84. extern void SGN_DestroyDigestInfo(SGNDigestInfo *info);
  85.  
  86. /*
  87. ** Encode a digest-info object
  88. **    "poolp" is where to allocate the result from; it can be NULL in
  89. **        which case generic heap allocation (XP_ALLOC) will be used
  90. **    "dest" is where to store the result; it can be NULL, in which case
  91. **        it will be allocated (from poolp or heap, as explained above)
  92. **    "diginfo" is the object to be encoded
  93. ** The return value is NULL if any error occurred, otherwise it is the
  94. ** resulting SECItem (either allocated or the same as the "dest" parameter).
  95. **
  96. ** XXX It might be nice to combine the create and encode functions.
  97. ** I think that is all anybody ever wants to do anyway.
  98. */
  99. extern SECItem *SGN_EncodeDigestInfo(PRArenaPool *poolp, SECItem *dest,
  100.                      SGNDigestInfo *diginfo);
  101.  
  102. /*
  103. ** Decode a DER encoded digest info objct.
  104. **  didata is thr source of the encoded digest.  
  105. ** The return value is NULL if an error occurs.  Otherwise, a
  106. ** digest info object which is allocated within it's own
  107. ** pool is returned.  The digest info should be deleted
  108. ** by later calling SGN_DestroyDigestInfo.
  109. */
  110. extern SGNDigestInfo *SGN_DecodeDigestInfo(SECItem *didata);
  111.  
  112.  
  113. /*
  114. ** Copy digest info.
  115. **  poolp is the arena to which the digest will be copied.
  116. **  a is the destination digest, it must be non-NULL.
  117. **  b is the source digest
  118. ** This function is for copying digests.  It allows digests
  119. ** to be copied into a specified pool.  If the digest is in
  120. ** the same pool as other data, you do not want to delete
  121. ** the digest by calling SGN_DestroyDigestInfo.  
  122. ** A return value of SECFailure indicates an error.  A return
  123. ** of SECSuccess indicates no error occured.
  124. */
  125. extern SECStatus  SGN_CopyDigestInfo(PRArenaPool *poolp,
  126.                     SGNDigestInfo *a, 
  127.                     SGNDigestInfo *b);
  128.  
  129. /*
  130. ** Compare two digest-info objects, returning the difference between
  131. ** them.
  132. */
  133. extern SECComparison SGN_CompareDigestInfo(SGNDigestInfo *a, SGNDigestInfo *b);
  134.  
  135.  
  136. SEC_END_PROTOS
  137.  
  138. #endif /* _SECDIG_H_ */
  139.